From: Richard M. Stallman Date: Fri, 28 May 1993 01:53:31 +0000 (+0000) Subject: (Fsleep_for): Don't return without waiting when SEC is 0. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95868 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=92723877c7b4cf2d8e503afa01a5ba92800fc4a7;p=emacs.git (Fsleep_for): Don't return without waiting when SEC is 0. --- diff --git a/src/dispnew.c b/src/dispnew.c index 1766561515c..4dde895240b 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -1852,7 +1852,7 @@ Emacs was built without floating point support.\n\ else sec += usec / 1000000, usec %= 1000000; - if (sec <= 0) + if (sec < 0) return Qnil; {